home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / manhole < prev    next >
Text File  |  2009-08-26  |  627b  |  22 lines

  1. #! /usr/bin/python
  2.  
  3. # Twisted, the Framework of Your Internet
  4. # Copyright (c) 2001-2004 Twisted Matrix Laboratories.
  5. # See LICENSE for details.
  6.  
  7.  
  8. """This script runs GtkManhole, a client for Twisted.Manhole
  9. """
  10.  
  11. ### Twisted Preamble
  12. # This makes sure that users don't have to set up their environment
  13. # specially in order to run these programs from bin/.
  14. import sys, os, string
  15. if string.find(os.path.abspath(sys.argv[0]), os.sep+'Twisted') != -1:
  16.     sys.path.insert(0, os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]), os.pardir, os.pardir)))
  17. ### end of preamble
  18.  
  19.  
  20. from twisted.scripts import manhole
  21. manhole.run()
  22.